home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / yacas_alg / yacas_morphos / share / yacas / include / lispassert.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  196 b   |  17 lines

  1.  
  2. #ifndef __lispassert_h__
  3. #define __lispassert_h__
  4.  
  5.  
  6. #include "choices.h"
  7.  
  8. #ifdef USE_ASSERT
  9.   #include <assert.h>
  10.   #define LISPASSERT(x)  assert(x)
  11. #else
  12.   #define LISPASSERT(x)
  13. #endif
  14.  
  15. #endif
  16.  
  17.